home *** CD-ROM | disk | FTP | other *** search
/ Disc to the Future 2 / Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin / MAC / MPW_C / ARC_SGML / SGMLH / LEXTOKE.H < prev    next >
Text File  |  1991-07-24  |  681b  |  12 lines

  1. /******************************************************************************/
  2. /* LEXTOKE.H: Symbols for tokenization lexical classes.
  3. */
  4. #define INV     0   /* Invalid Chars      Not allowed in an SGML name. */
  5. #define REC     1   /* Record Boundary    RS and RE. */
  6. #define SEP     2   /* Separator          Space and TAB. */
  7. #define NMC     3   /* NAMECHAR  . _      Period, underscore (plus NMS, NUM). */
  8. #define NMS     4   /* NAMESTRT           Lower and uppercase letters */
  9. #define NU      5   /* NUMERAL            Numerals */
  10. #define EOB     6   /* NONCHAR   28       End disk buffer. */
  11. /******************************************************************************/
  12.